Skip to main content

Partial Status

This API gives the aggregate status of all messages in the transaction.


Request Syntax

GET api/v2/message/Business ID/status/<TRANSACTION ID>/partial?apikey=<API KEY>

Request Body

{
"attempted": 1,
"failed": 0,
"error": 0,
"accepted": 0,
"sent": 0,
"delivered": 0,
"read": 1
}

Response Body

{
"attempted": 1,
"failed": 0,
"error": 0,
"accepted": 0,
"sent": 0,
"delivered": 0,
"read": 1
}

Examples

Example 1:

curl --location 'https://alb-backend.msgkart.com/api/v2/message/Business ID/status/<TRANSACTION ID>/partial?apikey=<API KEY>' \
--data '
{
"attempted": 1,
"failed": 0,
"error": 0,
"accepted": 0,
"sent": 0,
"delivered": 0,
"read": 1
}'